AiLow function returns the Low setting value of AI tag.
float @AiLow(string tag);
Arguments
string tag : AI tag name
Return Value
Low setting value of AI tag
Sample
value = @AiLow("ai05");
Description : The Low setting value of AI tag named 'ai05' is stored in the variable named 'value'.
ex1) Assume that the setting value of AI tag is set as follows : HiHi->100, High -> 90, Low -> 30, LoLo -> 20
In this case, if ' value = @AiLoLO("ai05"); ' is executed, '30' is stored in the variable named 'value'
ex2) If you want to change the Low setting value of AI tag named 'ai05', use 'Tag Member'.
' $ai03.LoLo = 40; ' changes the HiHi setting value of AI tag named 'ai05' into '40'
Reference